From: Eduard-Mihai Burtescu Date: Tue, 15 May 2018 07:14:03 +0000 (+0300) Subject: Remove -Zno-trans test. X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2^2~31^2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=62faec85115c202ddf1ae30bf1bdfc3d0142813d;p=cargo.git Remove -Zno-trans test. --- diff --git a/tests/testsuite/build.rs b/tests/testsuite/build.rs index bba6fd263..ff7cb083b 100644 --- a/tests/testsuite/build.rs +++ b/tests/testsuite/build.rs @@ -3760,31 +3760,6 @@ fn custom_target_dir_line_parameter() { ); } -#[test] -fn rustc_no_trans() { - if !is_nightly() { - return; - } - - let p = project("foo") - .file( - "Cargo.toml", - r#" - [package] - name = "foo" - version = "0.0.1" - authors = [] - "#, - ) - .file("src/main.rs", "fn main() {}") - .build(); - - assert_that( - p.cargo("rustc").arg("-v").arg("--").arg("-Zno-trans"), - execs().with_status(0), - ); -} - #[test] fn build_multiple_packages() { let p = project("foo")